icon theme: Remove fallbacks
authorMatthias Clasen <mclasen@redhat.com>
Tue, 12 Feb 2019 18:31:58 +0000 (13:31 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 12 Feb 2019 22:34:43 +0000 (17:34 -0500)
We want to include all needed icons as resources,
so disable the fallbacks and see what comes up.

gtk/gtkicontheme.c

index f1b8545cda9d590c868ce91cef423d47b449360a..d41d31310e15be04b9ab51ed5c3288d05e60fcdf 100644 (file)
@@ -1300,8 +1300,10 @@ load_themes (GtkIconTheme *icon_theme)
    * and gnome is a pragmatic solution to prevent missing icons in
    * GTK+ applications when run under, e.g. KDE.
    */
+#if 0
   insert_theme (icon_theme, DEFAULT_ICON_THEME);
   insert_theme (icon_theme, "gnome");
+#endif
   insert_theme (icon_theme, FALLBACK_ICON_THEME);
   priv->themes = g_list_reverse (priv->themes);